home *** CD-ROM | disk | FTP | other *** search
/ Let's Discover North Carolina / Let's Discover North Carolina.iso / pc / FILES / TIME.dxr / 00010_LeftButton.ls < prev    next >
Encoding:
Text File  |  2000-12-01  |  333 b   |  25 lines

  1. global direction
  2.  
  3. on mouseDown
  4.   direction = "left"
  5.   sprite(63).visible = 1
  6. end
  7.  
  8. on mouseWithin
  9.   if the mouseDown = 1 then
  10.     do(the mouseDownScript)
  11.   end if
  12. end
  13.  
  14. on mouseUp
  15.   direction = "stop"
  16.   sprite(63).visible = 0
  17.   puppetSound(3, 0)
  18. end
  19.  
  20. on mouseLeave
  21.   direction = "stop"
  22.   sprite(63).visible = 0
  23.   puppetSound(3, 0)
  24. end
  25.